home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
13316
/
13316.xpi
/
content
/
openPageDialog.xul
< prev
next >
Wrap
Extensible Markup Language
|
2009-10-01
|
3KB
|
90 lines
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (C) 2009 Norman Solomon
- e-mail: historytree.addon@yahoo.com
-
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the License.
-->
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://historyTree/content/historyViewer.css" type="text/css"?>
<window id="win" title="Open History Page"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- global keyboard shortcuts -->
<keyset>
<key id="keyEnter" keycode="VK_ENTER" oncommand="okButtonEventHandler(event);"/>
<key id="keyReturn" keycode="VK_RETURN" oncommand="okButtonEventHandler(event);"/>
</keyset>
<!-- groupbox for page description and URL -->
<vbox pack="center">
<groupbox pack="center" class="hdrGroupbox">
<hbox pack="center">
<label id="lblPageDesc" class="boldLabel"
value="Page Description"/>
</hbox>
<hbox pack="center">
<label id="lblPageURL" class="winInfoLabel"
value="Page URL"/>
</hbox>
</groupbox>
</vbox>
<!-- radiogroup for open page options -->
<vbox pack="center">
<radiogroup id="optGrpOpen"
style="margin-top: 7px; margin-left: 22px; margin-right: 10px">
<radio id="optGoto" crop="end" class="deepRadioButton"
label="Go to history page"
tooltiptext="Navigates to history page"/>
<radio id="optCurrTab" crop="end" class="deepRadioButton"
label="Open page in current tab"
tooltiptext="Opens page in the current Firefox Tab"/>
<radio id="optNewTab" crop="end" class="deepRadioButton"
label="Open page in a new tab"
tooltiptext="Opens page in a new Firefox Tab"/>
<radio id="optSelTab" crop="end" class="deepRadioButton"
label="Open page in tab selected below"
tooltiptext="Opens page in Tab selected from the list below"/>
</radiogroup>
<!-- listox (menulist) showing all open tabs -->
<hbox>
<menulist id="menuSelTab" class="menulist"
style="margin-left: 30px; width: 190px"
tooltiptext="List of all Tabs (first page descriptions)">
<menupopup style="max-height: 327px"/>
</menulist>
</hbox>
<!-- OK and cancel buttons -->
<hbox pack="center"
style="margin-top: 12px">
<button id="btnOK" class="pushButton"
style="width: 58px"
label="OK"
tooltiptext="Opens history page"
onclick="okButtonEventHandler(event);"/>
<spacer width="3"/>
<button id="btnCancel" class="pushButton"
style="width: 58px"
label="Cancel"
tooltiptext="Cancels open page operation"
onclick="cancelButtonEventHandler(event);"/>
</hbox>
</vbox>
<!-- Import required JS file -->
<script type="application/x-javascript" src="openPageDialog.js"/>
</window>